home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / TERMSA-C.HLP < prev    next >
Text File  |  1985-09-03  |  5KB  |  93 lines

  1. #ASCII:  Stands for "American Standard Code for Information Interchange."  It
  2. is a standard format used by computers to store and transfer data.
  3.  
  4. See also BYTE.
  5. #Asynchronous Communications Adapter:  A hardware device that provides serial
  6. communications capabilities to communicate with other computers or devices
  7. supporting the RS-232C communications standard.
  8. #Batch File:  A file of Commands and Batch Subcommands to be executed when the
  9. name of the batch file is entered.  The commands are executed as though they
  10. were entered through the keyboard.  Batch files must have .BAT as the filename
  11. extension.
  12.  
  13. For more information, see BAT-OVER in the OVERVIEW menu.
  14. #Baud:  The rate at which information is transmitted through a communications
  15. line.  Baud rates are expressed in bits per second.  As a rule of thumb, a baud
  16. rate divided by ten equals characters per second.  For example, a baud rate of
  17. 300 is equivalent to 30 characters per second.
  18. #Boot:  Means "Start the computer," or "Start DOS."
  19. #Break:  Terminate the current operation.  Most DOS commands and programs can
  20. be "broken" by holding down the CTRL key and pressing the BREAK key.  This is
  21. also called a Control-Break.
  22.  
  23. Note:  On some computers, such as the TANDY 1000, the BREAK key is used alone
  24. (without the CTRL key).
  25. #Byte:  A unit of information the computer recognizes as a character.  One byte
  26. is equivalent to one character (a letter, number, symbol or blank).  A byte is
  27. composed of eight "bits."  A bit is a 0 or 1, signifying the on/off state of an
  28. electronic circuit.  The 0 and 1 values of eight bits (2 to the eighth power)
  29. result in 256 unique states, accounting for the 256 ASCII codes of the computer.
  30. Bit is a contraction for BInary digiT.
  31.  
  32. See also ASCII.
  33. #Chaining Commands:  The DOS feature called "piping" lets you chain commands or
  34. programs together with automatic redirection of input and output.  The output of
  35. the first command is used as the input to the chained command.  The "|" is used
  36. to specify chaining.
  37.  
  38. For example, to produce a directory list sorted by filename, the SORT
  39. command is chained to the DIR command, as in:
  40.  
  41.     DIR | SORT
  42.  
  43. When the above command is executed, the directory list produced by DIR is
  44. passed as input to SORT which sorts the data and displays it.
  45.  
  46. See REDIRECTION for related information.  See PIPING in the ADVANCED menu for
  47. detail usage information.
  48. #Cluster:  One or more consecutive sectors of disk storage.  DOS keeps track of
  49. files on disk by storing the locations of file clusters (the sectors where file
  50. contents are stored) in a table.  This table is called the File Allocation
  51. Table.  When DOS reads a file's information from disk, it searches the File
  52. Allocation Table, finds the addresses of the clusters that contain the file's
  53. information, and then reads the information from the appropriate clusters.
  54.  
  55. See also SECTOR and TRACK.
  56. #Command Line:  The place on the screen where you enter a command.  The command
  57. line begins with the DOS prompt "d>", where "d" is the drive letter of the
  58. default drive.
  59.  
  60. See SYSTEM PROMPT, CURRENT LINE and RETAINED LINE for related information.
  61. #Command Processor:  The COMMAND.COM file.  It contains the instructions needed
  62. to activate DOS and make it usable.  It also contains the "internal" DOS
  63. commands and the batch subcommand processor.  When DOS is started, the contents
  64. of COMMAND.COM are loaded into memory.
  65. #Concatenate Files:  To join two or more files into one file.  Files are
  66. concatenated by the COPY command, using the "+" sign between the files to be
  67. joined.
  68.  
  69. The following copies FILE1 and FILE2, and concatenates them in a new file,
  70. FILE3.  The data from FILE1 is copied first to FILE3 and then the data from
  71. FILE2 is added to the end:
  72.  
  73.     COPY FILE1+FILE2 FILE3
  74. #Console:  The keyboard and screen are called the "console."  The computer user
  75. interacts with the computer through the console.  The user communicates to the
  76. computer through the keyboard and the computer uses the screen to display its
  77. responses.
  78. #Control-Break  (See Break)
  79. #Current Directory:  The directory of a disk that DOS will use by default. Since
  80. DOS lets you create multiple directories, you must indicate which directory you
  81. wish to work with.  If you do not specify a file's directory in a DOS command,
  82. the current directory is used by default.
  83.  
  84. The CHDIR (Change Directory) command changes the current directory.
  85.  
  86. See DIRECTORY PATH and FILESPEC for related information.
  87. #Current Line:  The line on the screen where DOS commands and program names are
  88. entered.  "Retained line" is a related term.  The current line is the current
  89. command you are preparing for DOS, and the retained line is the previous command
  90. that DOS has stored in memory.
  91.  
  92. See also RETAINED LINE.
  93.